-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
26 lines (26 loc) · 855 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"lib": [
"es5",
"es6"
],
"allowJs": true,
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./build",
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
"strictPropertyInitialization": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
"sourceMap": true,
/* Advanced Options */
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true,
"typeRoots": ["./src/@types"]
}
}