This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
cad/tsconfig.json
2022-10-15 19:16:08 +02:00

28 lines
512 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"allowJs": false,
"noImplicitAny": false,
"noImplicitThis": false,
"alwaysStrict": true,
"sourceMap": true,
"outDir": "./",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"pretty": true,
"baseUrl": "./src",
"rootDir": "./src",
"watch": false,
"allowSyntheticDefaultImports": true
},
"compileOnSave": false,
"filesGlob": [
"./src/**/*.ts"
],
"files": [
"./src/index.ts",
"./src/main.ts"
]
}