forked from joule-labs/joule-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
executable file
·34 lines (34 loc) · 985 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
27
28
29
30
31
32
33
34
{
"compilerOptions": {
"module": "esnext",
"target": "es6",
"jsx": "preserve",
"moduleResolution": "node",
"outDir": "dist/tsc_output",
"sourceMap": true,
"strict": true,
"noEmitOnError": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"removeComments": false,
"preserveConstEnums": true,
"skipLibCheck": true,
"lib": ["dom", "es2017"],
"baseUrl": ".",
"paths": {
"components/*": ["./src/app/components/*"],
"lib/*": ["./src/app/lib/*"],
"modules/*": ["./src/app/modules/*"],
"pages/*": ["./src/app/pages/*"],
"prompts/*": ["./src/app/prompts/*"],
"static/*": ["./src/app/static/*"],
"store/*": ["./src/app/store/*"],
"styles/*": ["./src/app/styles/*"],
"typings/*": ["./src/app/typings/*"],
"utils/*": ["./src/app/utils/*"]
}
},
"include": ["src", "webpack.config.ts"]
}