Files
archived-x-prober/tsconfig.json
Km.Van 15a3284ea5 rebuild language module
change module to ESM
2022-04-28 14:19:53 +08:00

48 lines
1.2 KiB
JSON

{
"compilerOptions": {
"baseUrl": "src",
"paths": {},
"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,
"suppressImplicitAnyIndexErrors": 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": [
{
"transform": "typescript-styled-plugin",
"type": "config",
"minify": true,
"ssr": false
}
],
"include": ["src/**/*", "*.mjs", "./tools/**/*"],
"exclude": ["node_modules", "build", "scripts", "webpack", "jest"],
"includes": ["styled-components.d.ts"]
}