29 lines
659 B
JSON
29 lines
659 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"declaration": true,
|
|
"emitDeclarationOnly": false,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"baseUrl": ".",
|
|
"types": ["node"],
|
|
"ignoreDeprecations": "6.0",
|
|
"paths": {
|
|
"mtp/raw": ["src/raw/index.ts"],
|
|
"mtp/type-map": ["src/type-map/index.ts"],
|
|
},
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
},
|
|
"include": [
|
|
"src/raw/**/*.ts",
|
|
"src/sdk/**/*.ts",
|
|
"src/type-map/**/*.ts",
|
|
"src/vite/**/*.ts",
|
|
],
|
|
}
|