Fork of github.com/did-method-plc/did-method-plc
1{
2 "compilerOptions": {
3 "declaration": true,
4 "noImplicitAny": false,
5 "removeComments": true,
6 "noLib": false,
7 "emitDecoratorMetadata": true,
8 "experimentalDecorators": true,
9 "target": "es2020",
10 "sourceMap": true,
11 "module": "commonjs",
12 "jsx": "preserve",
13 "strict": true,
14 "strictPropertyInitialization": false,
15 "moduleResolution": "node",
16 "resolveJsonModule": true,
17 "allowSyntheticDefaultImports": true,
18 "esModuleInterop": true,
19 "lib": ["dom", "dom.iterable", "esnext", "webworker"],
20 "skipLibCheck": true,
21 "forceConsistentCasingInFileNames": true,
22 "isolatedModules": true,
23 "composite": true
24 },
25 "exclude": ["node_modules", "**/*/dist"],
26 "references": [
27 { "path": "./packages/lib/tsconfig.build.json" },
28 { "path": "./packages/server/tsconfig.build.json" }
29 ]
30}