swaf/tsconfig.json

35 lines
607 B
JSON
Raw Permalink Normal View History

2020-04-22 15:52:17 +02:00
{
"compilerOptions": {
2020-04-23 11:40:55 +02:00
"target": "ES6",
"module": "CommonJS",
2020-04-22 15:52:17 +02:00
"declaration": true,
"stripInternal": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "Node",
"esModuleInterop": true,
"baseUrl": "dist",
2020-04-23 12:12:08 +02:00
"rootDirs": [
"src",
"config"
],
"sourceRoot": "src",
2020-04-22 15:52:17 +02:00
"inlineSourceMap": true,
"inlineSources": true,
"outDir": "dist",
"typeRoots": [
"node_modules/@types",
"src/types"
],
"lib": [
"es2020"
2020-09-25 11:38:05 +02:00
],
"resolveJsonModule": true
2020-04-22 15:52:17 +02:00
},
"include": [
2020-09-03 08:06:27 +02:00
"src/**/*"
2020-04-22 15:52:17 +02:00
]
}