annotate tsconfig.json @ 0:6d2e2a8ac6f0 default tip

start from https://github.com/supertorpe/vite-ts-phaser-starter
author drewp@bigasterisk.com
date Sun, 13 Nov 2022 13:24:40 -0800
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
1 {
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
2 "compilerOptions": {
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
3 "target": "ESNext",
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
4 "module": "ESNext",
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
5 "lib": ["ESNext", "DOM", "scripthost"],
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
6 "moduleResolution": "Node",
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
7 "strict": true,
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
8 "sourceMap": true,
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
9 "resolveJsonModule": true,
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
10 "esModuleInterop": true,
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
11 "noEmit": true,
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
12 "noUnusedLocals": true,
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
13 "noUnusedParameters": true,
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
14 "noImplicitReturns": true
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
15 },
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
16 "include": ["./src"]
6d2e2a8ac6f0 start from https://github.com/supertorpe/vite-ts-phaser-starter
drewp@bigasterisk.com
parents:
diff changeset
17 }