mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-29 02:30:03 +00:00
34 lines
656 B
JSON
34 lines
656 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "tsconfig",
|
|
"lib": [
|
|
"es2018",
|
|
"dom"
|
|
],
|
|
"declaration": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"rootDir": "src/",
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"target": "es6",
|
|
"types": [
|
|
"jasmine",
|
|
"node"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"src/*/files/**/*"
|
|
]
|
|
}
|