osr-mono/packages/osr-tasks/tsconfig.json
2025-01-29 17:48:22 +01:00

24 lines
473 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"allowJs": true,
"noImplicitAny": false,
"noImplicitThis": false,
"alwaysStrict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"inlineSourceMap": false,
"sourceMap": true,
"pretty": false,
"baseUrl": ".",
"allowSyntheticDefaultImports": true
},
"include": [
"./index.ts",
"./src/main.ts",
"./library.ts",
"./Gruntfile.ts",
"./tasks/**/*.ts"
]
}