544 BJSONView Raw
1{
2 "compilerOptions": {
3 "target": "es5",
4 "lib": ["es2015", "dom"],
5 "rootDirs": ["src", "example"],
6 "outDir": "build",
7 "moduleResolution": "node",
8
9 "declaration": true,
10 "strict": true,
11 "sourceMap": true,
12 "pretty": true,
13 "forceConsistentCasingInFileNames": true,
14
15 "noEmitOnError": true,
16 "noFallthroughCasesInSwitch": true,
17 "noImplicitAny": true,
18 "noImplicitReturns": true,
19 "noImplicitThis": true,
20 "noUnusedLocals": true,
21 "noUnusedParameters": true
22 }
23}