swaf/tsconfig.json

34 lines
713 B
JSON
Raw Normal View History

2020-04-22 15:52:17 +02:00
{
2021-04-27 15:44:04 +02:00
"compilerOptions": {
"target": "ES6",
"module": "CommonJS",
"declaration": true,
"stripInternal": true,
2020-04-22 15:52:17 +02:00
2021-04-27 15:44:04 +02:00
"strict": true,
"allowSyntheticDefaultImports": true,
2020-04-22 15:52:17 +02:00
2021-04-27 15:44:04 +02:00
"moduleResolution": "Node",
"esModuleInterop": true,
"baseUrl": "dist",
"rootDir": "src",
"sourceRoot": "src",
"inlineSourceMap": true,
"inlineSources": true,
"outDir": "dist",
2020-04-22 15:52:17 +02:00
2021-04-27 15:44:04 +02:00
"typeRoots": [
"node_modules/@types",
"src/types"
],
"lib": [
"es2020"
],
"resolveJsonModule": true,
"skipLibCheck": true
},
"include": [
"src/**/*"
]
2021-03-18 16:22:25 +01:00
}