nocobase/tsconfig.json
2021-09-16 00:38:48 +08:00

23 lines
484 B
JSON
Executable File

{
"compilerOptions": {
"esModuleInterop": true,
"moduleResolution": "node",
"jsx": "react",
"module": "commonjs",
"target": "ES6",
"allowJs": false,
"noUnusedLocals": false,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"declaration": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"baseUrl": ".",
"paths": {
"@nocobase/*": [
"./packages/*/src"
]
}
}
}