forked from nmstate/nmstate-console-plugin
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
33 lines (33 loc) · 874 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": true,
"strict": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"noUnusedLocals": false,
"target": "es2020",
"module": "es2020",
"moduleResolution": "node",
"sourceMap": true,
"jsx": "react",
"baseUrl": "./",
"lib": ["es2016", "es2019", "es2020.promise", "dom", "dom.iterable", "ES2021.String"],
"paths": {
"@images/*": ["images/*"],
"@types": ["src/nmstate-types/index.ts"],
"@utils/*": ["src/utils/*"],
"@models": ["src/console-models/index.ts"]
}
},
"include": ["src", "pkg", "src/custom.d.ts"],
"exclude": ["node_modules", "dist"],
"ts-node": {
"files": true,
"transpileOnly": true,
"compilerOptions": {
"module": "commonjs"
}
}
}