mono/packages/cad/tsconfig.json
2025-02-07 07:14:02 +01:00

25 lines
463 B
JSON

{
"extends": "../typescript-config/base.json",
"include": [
"src/**/*.ts"
],
"files": [
"src/index.ts",
"src/main.ts"
],
"compilerOptions": {
"strictNullChecks": false,
"allowJs": true,
"baseUrl": ".",
"declarationDir": "./dist",
"outDir": "./dist",
"inlineSourceMap": true,
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
"paths": {
"@/*": [
"src/*"
]
}
},
}