-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathtsconfig.json
More file actions
17 lines (17 loc) · 766 Bytes
/
tsconfig.json
File metadata and controls
17 lines (17 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"compilerOptions": {
"lib": ["es2015", "es2017"],
"noImplicitReturns": true,
"sourceMap": true,
"target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */,
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
"experimentalDecorators": true /* Enables experimental support for ES7 decorators. */,
"emitDecoratorMetadata": true /* Enables experimental support for emitting type metadata for decorators. */,
"strictPropertyInitialization": false,
"esModuleInterop": true,
"declaration": true,
"outDir": "lib"
},
"compileOnSave": true,
"include": ["src", "examples"]
}