mirror of
https://github.com/kmvan/x-prober.git
synced 2026-04-22 01:08:59 +08:00
61 lines
1.2 KiB
JSON
61 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"allowImportingTsExtensions": true,
|
|
"allowJs": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"alwaysStrict": true,
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"diagnostics": true,
|
|
"downlevelIteration": true,
|
|
"emitBOM": false,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"newLine": "LF",
|
|
"noEmit": true,
|
|
"noEmitOnError": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"pretty": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "ESNext",
|
|
"incremental": false,
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-plugin-css-modules"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib"
|
|
],
|
|
"includes": [
|
|
"src/scss.d.ts"
|
|
]
|
|
} |