2020-12-25 12:41:54 -08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"declaration": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2022-01-05 17:56:35 -08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2020-12-25 12:41:54 -08:00
|
|
|
"lib": ["es6", "dom"],
|
|
|
|
"module": "es6",
|
|
|
|
"moduleResolution": "node",
|
2022-09-17 06:15:49 -07:00
|
|
|
"resolveJsonModule": true,
|
2020-12-25 12:41:54 -08:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2021-12-24 15:02:52 -08:00
|
|
|
"*": ["node_modules/*", "app/javascript/*"],
|
|
|
|
"retrospring/*": ["app/javascript/retrospring/*"],
|
|
|
|
"utilities/*": ["app/javascript/retrospring/utilities/*"]
|
2020-12-25 12:41:54 -08:00
|
|
|
},
|
|
|
|
"sourceMap": true,
|
|
|
|
"target": "es5",
|
|
|
|
"noEmit": true
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"node_modules",
|
|
|
|
"vendor",
|
|
|
|
"public"
|
|
|
|
],
|
|
|
|
"compileOnSave": false
|
|
|
|
}
|