UNPKG

579 BJSONView Raw
1{
2 "compilerOptions": {
3 "baseUrl": "tsconfig",
4 "lib": ["es2018", "dom"],
5 "module": "commonjs",
6 "moduleResolution": "node",
7 "noEmitOnError": true,
8 "noFallthroughCasesInSwitch": true,
9 "noImplicitAny": true,
10 "noImplicitThis": true,
11 "noUnusedParameters": true,
12 "noUnusedLocals": true,
13 "rootDir": "src/",
14 "skipDefaultLibCheck": true,
15 "skipLibCheck": true,
16 "sourceMap": true,
17 "strictNullChecks": true,
18 "target": "es6",
19 "types": ["jasmine", "node"]
20 },
21 "include": ["src/**/*"],
22 "exclude": ["src/*/files/**/*"]
23}