keeweb/tsconfig.json

18 lines
409 B
JSON
Raw Normal View History

2021-05-09 23:55:40 +02:00
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"preserveConstEnums": true,
"sourceMap": true,
"strict": true,
2021-05-23 08:25:01 +02:00
"jsx": "preserve",
2021-05-09 23:55:40 +02:00
"jsxImportSource": "preact",
2021-05-23 08:25:01 +02:00
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
2021-05-09 23:55:40 +02:00
"baseUrl": "app/scripts",
2021-05-10 17:56:09 +02:00
"noEmitOnError": true,
"esModuleInterop": true
2021-05-09 23:55:40 +02:00
},
2021-05-10 18:30:12 +02:00
"include": ["app/scripts/**/*", "test/**/*.ts"]
2021-05-09 23:55:40 +02:00
}