25 lines
478 B
JSON
25 lines
478 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"declaration": false,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"lib": ["es6", "dom"],
|
||
|
"module": "es6",
|
||
|
"moduleResolution": "node",
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"*": ["node_modules/*", "app/javascript/*"]
|
||
|
},
|
||
|
"sourceMap": true,
|
||
|
"target": "es5",
|
||
|
"noEmit": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"**/*.spec.ts",
|
||
|
"node_modules",
|
||
|
"vendor",
|
||
|
"public"
|
||
|
],
|
||
|
"compileOnSave": false
|
||
|
}
|