2020-10-18 01:53:33 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-06-13 17:06:16 -07:00
|
|
|
"module": "esnext",
|
2020-10-18 01:53:33 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"target": "es6",
|
2021-07-06 17:04:02 -07:00
|
|
|
"lib": ["DOM", "ES6"],
|
2020-10-18 01:53:33 +02:00
|
|
|
"noImplicitAny": true,
|
2020-11-16 02:54:37 +01:00
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2020-10-18 01:53:33 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"allowJs": true,
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
|
|
|
"node_modules/*",
|
2021-02-21 18:38:21 -08:00
|
|
|
"types/*"
|
2021-04-20 17:42:32 -07:00
|
|
|
],
|
|
|
|
"js/*": [
|
|
|
|
"js/*"
|
2021-05-25 12:08:10 -07:00
|
|
|
],
|
|
|
|
"test/*": [
|
|
|
|
"test/*"
|
2020-10-18 01:53:33 +02:00
|
|
|
]
|
2021-05-25 12:08:10 -07:00
|
|
|
}
|
2020-10-18 01:53:33 +02:00
|
|
|
},
|
|
|
|
"include": [
|
2021-04-20 17:42:32 -07:00
|
|
|
"js/**/*",
|
|
|
|
"test/**/*",
|
2021-06-13 17:06:16 -07:00
|
|
|
"*.config.js"
|
2020-10-18 01:53:33 +02:00
|
|
|
]
|
2021-02-21 18:38:21 -08:00
|
|
|
}
|