forked from vanilla/vanilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
45 lines (45 loc) · 1.18 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
{
"compilerOptions": {
"allowJs": true,
"jsx": "react",
"lib": [
"es2018",
"dom",
"dom.iterable"
],
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"strictNullChecks": true,
"target": "esnext",
"module": "esnext",
"isolatedModules": false,
"baseUrl": ".",
"paths": {
"@library/*": ["./library/src/scripts/*"],
"@vanilla/*": ["./applications/vanilla/src/scripts/*"],
"@dashboard/*": ["./applications/dashboard/src/scripts/*"],
"@rich-editor/*": ["./plugins/rich-editor/src/scripts/*"],
"@knowledge/*": ["./plugins/knowledge/src/scripts/*"],
"@testroot/*": ["./tests/javascript/*"]
},
"typeRoots": [
"@types",
"./node_modules/@types"
],
"skipLibCheck": true,
"sourceMap": true,
"plugins": [
{
"name": "typescript-tslint-plugin",
}
]
},
"include": [
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"**/*.js",
"**/*.jsx"
]
}