machines/projects/Printhead/firmware/node/tsconfig.json
2023-11-12 21:43:05 +01:00

29 lines
536 B
JSON

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