annotate tsconfig.json @ 130:73a70d00fb74

dep upgrades; working on build+release setup
author drewp@bigasterisk.com
date Sat, 06 May 2023 13:11:19 -0700
parents 76c1a29a328f
children
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",
130
73a70d00fb74 dep upgrades; working on build+release setup
drewp@bigasterisk.com
parents: 101
diff changeset
10 "target": "ES6",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
11 "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
12 "declaration": true,
101
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
13 "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
14 "experimentalDecorators": true,
101
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
15 "forceConsistentCasingInFileNames": true,
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
16 "rootDir": "./src",
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
17 "outDir": "./types",
76c1a29a328f repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents: 86
diff changeset
18 "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
19 },
86
6ec759f9009f build fixes, dead code, format
drewp@bigasterisk.com
parents: 80
diff changeset
20 "include": ["src/**/*.ts"],
6ec759f9009f build fixes, dead code, format
drewp@bigasterisk.com
parents: 80
diff changeset
21 "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
22 }