annotate tsconfig.json @ 122:2e8fa3fec0c8

support joining subjects into wider rows
author drewp@bigasterisk.com
date Sun, 20 Mar 2022 14:12:03 -0700
parents 76c1a29a328f
children 73a70d00fb74
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
drewp@localhost
parents:
diff changeset
1 {
33
b82c05e22d9a change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents: 31
diff changeset
2 "compilerOptions": {
35
29d8ed02a275 build and tests, including jsonld
drewp@bigasterisk.com
parents: 34
diff changeset
3 "strict": true,
33
b82c05e22d9a change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents: 31
diff changeset
4 "noFallthroughCasesInSwitch": true,
b82c05e22d9a change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents: 31
diff changeset
5 "noImplicitReturns": true,
101
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
6 "downlevelIteration": true,
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
7 "allowSyntheticDefaultImports": true,
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
8 "useDefineForClassFields": false,
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
9 "module": "esnext",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
10 "moduleResolution": "node",
33
b82c05e22d9a change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents: 31
diff changeset
11 "declaration": true,
101
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
12 "emitDeclarationOnly": true,
33
b82c05e22d9a change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents: 31
diff changeset
13 "experimentalDecorators": true,
101
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
14 "forceConsistentCasingInFileNames": true,
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
15 "rootDir": "./src",
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
16 "outDir": "./types",
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
17 "lib": ["es2017", "dom", "dom.iterable"]
33
b82c05e22d9a change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents: 31
diff changeset
18 },
86
6ec759f9009f build fixes, dead code, format
drewp@bigasterisk.com
parents: 80
diff changeset
19 "include": ["src/**/*.ts"],
6ec759f9009f build fixes, dead code, format
drewp@bigasterisk.com
parents: 80
diff changeset
20 "exclude": ["src/**/*.test.ts"]
33
b82c05e22d9a change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents: 31
diff changeset
21 }