mirror of
https://github.com/kmvan/x-prober.git
synced 2026-04-21 16:59:02 +08:00
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
// "baseUrl": "src",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"module": "esnext",
|
|
"target": "es6",
|
|
"lib": ["esnext", "dom"],
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"rootDir": "src",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": false,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
// "skipLibCheck": true,
|
|
"diagnostics": true,
|
|
"emitBOM": false,
|
|
"newLine": "LF",
|
|
"noEmitOnError": true,
|
|
"pretty": true,
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"typeRoots": ["../node_modules/@types"],
|
|
"types": ["core-js"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"downlevelIteration": true
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-plugin-css-modules",
|
|
"options": {
|
|
"customMatcher": "\\.scss$"
|
|
}
|
|
}
|
|
],
|
|
"include": ["src/**/*", "*.mjs", "*.scss", "./tools/**/*"],
|
|
"exclude": ["node_modules", "build", "scripts", "webpack", "jest"],
|
|
"includes": ["src/scss.d.ts"]
|
|
}
|