Skip to content

Commit f11f373

Browse files
committed
chore: update compiler options
1 parent 26e8030 commit f11f373

File tree

1 file changed

+30
-12
lines changed

1 file changed

+30
-12
lines changed

tsconfig.json

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,38 @@
11
{
2-
"compileOnSave": false,
32
"compilerOptions": {
4-
"outDir": "./temp/out-tsc",
5-
"sourceMap": true,
6-
"declaration": true,
3+
"outDir": "./dist",
4+
"rootDir": "./src",
5+
"target": "es5",
6+
"module": "es2015",
77
"moduleResolution": "node",
88
"emitDecoratorMetadata": true,
99
"experimentalDecorators": true,
10-
"target": "es5",
11-
"module": "es6",
12-
"typeRoots": [
13-
"node_modules/@types"
14-
],
15-
"lib": [
16-
"es6",
17-
"dom"
10+
"sourceMap": true,
11+
"inlineSources": true,
12+
"noEmitHelpers": false,
13+
"noImplicitAny": false,
14+
"declaration": true,
15+
"skipLibCheck": false,
16+
"stripInternal": true,
17+
"strictNullChecks": false,
18+
"allowSyntheticDefaultImports": true,
19+
"noUnusedLocals": false,
20+
"noUnusedParameters": false,
21+
"lib": ["dom", "es6"],
22+
"types": [
23+
"jasmine"
1824
]
25+
},
26+
"exclude": [
27+
"node_modules"
28+
],
29+
"files": [
30+
"./scripts/typings.d.ts",
31+
"./src/index.ts",
32+
],
33+
"angularCompilerOptions": {
34+
"strictMetadataEmit": true,
35+
"skipTemplateCodegen": true,
36+
"fullTemplateTypeCheck": true
1937
}
2038
}

0 commit comments

Comments
 (0)