nitro-converter/tsconfig.json

29 lines
671 B
JSON
Raw Normal View History

2021-01-28 09:12:04 +01:00
{
2021-02-17 06:14:07 +01:00
"compilerOptions": {
"module": "commonjs",
2021-12-22 09:45:09 +01:00
"declaration": false,
2021-02-17 06:14:07 +01:00
"noImplicitAny": false,
"noUnusedLocals": false,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"target": "es6",
"sourceMap": false,
2021-03-09 00:13:43 +01:00
"allowJs": true,
2021-12-22 09:45:09 +01:00
"esModuleInterop": true,
2021-02-17 06:14:07 +01:00
"baseUrl": "./src",
"outDir": "./dist"
},
"include": [
2021-12-22 09:45:09 +01:00
"src/**/*",
"node_modules/wrappy/swf"
2021-02-17 06:14:07 +01:00
],
"exclude": [
"node_modules",
2022-07-27 18:46:23 +02:00
"dist",
"src/configuration.json"
2021-02-17 06:14:07 +01:00
]
}