mirror of
https://github.com/billsonnn/nitro-converter.git
synced 2024-11-22 23:50:52 +01:00
27 lines
606 B
JSON
27 lines
606 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": false,
|
|
"removeComments": true,
|
|
"noLib": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"target": "es6",
|
|
"sourceMap": false,
|
|
"allowJs": false,
|
|
"baseUrl": "./src",
|
|
"outDir": "./dist"
|
|
},
|
|
"include": [
|
|
"src/configuration.json",
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|