32 lines
892 B
JSON
32 lines
892 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"useDefineForClassFields": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": false,
|
|
"strictNullChecks": false,
|
|
"jsx": "preserve",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": false,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": false,
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"types": ["vite/client", "node"],
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
|
"paths": {
|
|
"@mars/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "packages/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
"exclude": ["node_modules", "src/**/*.js", "dist"]
|
|
}
|