mono/packages/tasks/tsconfig.json
2026-01-28 12:28:45 +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"
]
}