mirror of
https://github.com/billsonnn/nitro-imager
synced 2024-11-22 23:50:53 +01:00
28 lines
608 B
JSON
28 lines
608 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": false,
|
|
"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",
|
|
"index.ts",
|
|
"config.json"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|