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

20 lines
422 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "ES6",
"allowJs": true,
"noImplicitAny": false,
"noImplicitThis": false,
"alwaysStrict": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"inlineSources": true,
"inlineSourceMap": true,
"pretty": true,
"outDir": "./",
"allowSyntheticDefaultImports": true
},
"files": [
"./tasks/Gruntfile.ts"
]
}