nocobase/tsconfig.json
2021-05-23 08:38:08 +08:00

23 lines
480 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/*"
]
}
}
}