mirror of
https://github.com/kmvan/x-prober.git
synced 2026-04-22 01:08:59 +08:00
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"module": "esnext",
|
|
"target": "es6",
|
|
"lib": ["esnext", "dom"],
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"rootDir": "src",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": false,
|
|
"noImplicitThis": false,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"noUnusedLocals": true,
|
|
// "skipLibCheck": true,
|
|
"diagnostics": true,
|
|
"emitBOM": false,
|
|
"newLine": "LF",
|
|
"noEmitOnError": true,
|
|
"pretty": true,
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"paths": {
|
|
"~components/*": ["Components/*"]
|
|
},
|
|
"typeRoots": ["../node_modules/@types"],
|
|
"types": ["core-js"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"downlevelIteration": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"scripts",
|
|
"acceptance-tests",
|
|
"webpack",
|
|
"jest",
|
|
"src/setupTests.ts"
|
|
]
|
|
}
|