nitro-renderer/tsconfig.json

36 lines
720 B
JSON
Raw Normal View History

2021-03-17 03:02:09 +01:00
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./src",
"outDir": "./dist",
"sourceMap": false,
"declaration": true,
"experimentalDecorators": true,
"moduleResolution": "Node",
2021-07-13 22:34:41 +02:00
"esModuleInterop": true,
2021-03-17 03:02:09 +01:00
"importHelpers": true,
2021-07-27 23:08:18 +02:00
"isolatedModules": true,
2021-03-17 03:02:09 +01:00
"resolveJsonModule": true,
2021-07-27 23:08:18 +02:00
"downlevelIteration": true,
2021-03-17 03:02:09 +01:00
"allowSyntheticDefaultImports": true,
2021-07-27 23:08:18 +02:00
"allowJs": true,
"skipLibCheck": true,
"noEmit": true,
"target": "ES6",
2021-03-17 03:02:09 +01:00
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
2021-07-13 22:34:41 +02:00
],
"module": "ES6",
2021-07-13 22:34:41 +02:00
"paths": {
"mini-signals": [
2021-07-27 23:08:18 +02:00
"node_modules/mini-signals/index.js"
2021-07-13 22:34:41 +02:00
]
},
2021-07-27 23:08:18 +02:00
},
"include": [
"src"
]
2021-03-17 03:02:09 +01:00
}