-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathtsconfig.json
More file actions
12 lines (12 loc) · 710 Bytes
/
tsconfig.json
File metadata and controls
12 lines (12 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"target": "ES2016" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
"module": "CommonJs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
"isolatedModules": true /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */,
"moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
"noImplicitAny": true
},
"include": ["src"],
"exclude": ["test", "node_modules"]
}