forked from alibaba/lowcode-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (19 loc) · 542 Bytes
/
tsconfig.json
File metadata and controls
19 lines (19 loc) · 542 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"extends": "../../tsconfig.json",
"compilerOptions": {
// Enable strictest settings like strictNullChecks & noImplicitAny.
"strict": false,
// Allow json import
"resolveJsonModule": true,
// skip type checking of declaration files
"skipLibCheck": true,
"baseUrl": "./packages",
"allowJs": true,
"outDir": "lib",
"lib": ["es2018"],
"module": "commonjs",
"target": "es2018"
},
"exclude": ["**/test", "**/lib", "**/dist", "**/es", "node_modules", "schemas"],
"include": ["src/**/*"]
}