Skip to content

Commit 903b68f

Browse files
committed
Added default tsconfig until IntelliJ implements custom ones.
1 parent 47337ea commit 903b68f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

tsconfig.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"compilerOptions": {
3+
"emitDecoratorMetadata": true,
4+
5+
"declaration": false,
6+
"experimentalDecorators": true,
7+
"module": "commonjs",
8+
"moduleResolution": "node",
9+
10+
"outDir": ".",
11+
12+
"rootDir": ".",
13+
"sourceMap": true,
14+
"inlineSources": true,
15+
// "lib": ["es6", "dom"],
16+
"target": "es5"
17+
},
18+
"files": [
19+
"core.ts",
20+
"typings/index.d.ts"
21+
],
22+
"angularCompilerOptions": {
23+
"strictMetadataEmit": true
24+
}
25+
}

0 commit comments

Comments
 (0)