Files
archived-x-prober/tsconfig.json
2025-08-06 22:03:32 +08:00

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"
]
}