forked from Joystream/community-repo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
39 lines (39 loc) · 1.22 KB
/
tsconfig.json
File metadata and controls
39 lines (39 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"strict": false,
"sourceMap": true,
"noImplicitAny": true,
"noUnusedLocals": false,
"noImplicitReturns": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
"declaration": true,
"resolveJsonModule": true,
"types" : [
"node"
],
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"@polkadot/types/augment": ["./node_modules/@joystream/types/augment-codec/augment-types.ts"]
},
"typeRoots": [
"./node_modules/@polkadot/ts",
"./node_modules/@types"
],
"declarationDir": "build",
"outDir": "build"
},
"include": [
"src/*.ts"
],
"exclude": [
"node_modules",
"**/*.spec.ts",
"**/*.d.ts"
]
}