1{
2 "compilerOptions": {
3 "target": "ES2015",
4 "module": "commonjs",
5 "lib": [ "ES2015", "dom" ],
6 "sourceMap": true,
7 "outDir": "./script",
8 "strict": true,
9 "strictNullChecks": true,
10 "strictFunctionTypes": true,
11 "noImplicitThis": true,
12 "alwaysStrict": true,
13 "noImplicitReturns": true,
14 "noFallthroughCasesInSwitch": true,
15 "esModuleInterop": true,
16 "experimentalDecorators": true,
17 }
18}
1{
2 "compilerOptions": {
3 "target": "es5",
4 "module": "commonjs",
5 "outDir": "public/js"
6 "rootDir": "src",
7 "strict": true,
8 "esModuleInterop": true
9 "forceConsistentCasingInFileNames": true
10 },
11 "include": ["src"]
12}
13