2021-02-07 17:50:54 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2018",
|
2021-04-18 16:16:15 +02:00
|
|
|
"module": "CommonJS",
|
2021-02-07 17:50:54 +01:00
|
|
|
"lib": ["es6"],
|
|
|
|
"allowJs": true,
|
|
|
|
"outDir": "build",
|
|
|
|
"rootDir": "src",
|
|
|
|
"strict": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": false,
|
|
|
|
"skipLibCheck": true,
|
2021-04-18 16:16:15 +02:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"declaration": true
|
2021-02-13 17:40:22 +01:00
|
|
|
},
|
2021-04-18 16:16:15 +02:00
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
],
|
2021-02-13 17:40:22 +01:00
|
|
|
"exclude": [
|
|
|
|
"build/",
|
2021-04-18 16:16:15 +02:00
|
|
|
"node_modules/"
|
2021-02-13 17:40:22 +01:00
|
|
|
]
|
2021-02-07 17:50:54 +01:00
|
|
|
}
|