webstorage-decorators/tsconfig.json

22 lines
415 B
JSON
Raw Normal View History

2018-05-03 15:07:59 -04:00
{
"compilerOptions": {
2021-01-28 15:18:32 -05:00
"target": "es2015",
"module": "es2020",
2018-05-03 15:07:59 -04:00
"declaration": true,
2021-01-28 15:18:32 -05:00
"sourceMap": true,
2018-05-03 15:07:59 -04:00
"outDir": "lib",
2021-01-28 15:18:32 -05:00
"strict": true,
"noImplicitAny": false,
"moduleResolution": "node",
2021-01-28 10:24:11 -05:00
"typeRoots": [
"./node_modules/@types"
],
2021-01-28 15:18:32 -05:00
"esModuleInterop": true,
2018-05-03 15:15:20 -04:00
"experimentalDecorators": true,
2021-01-28 15:18:32 -05:00
"emitDecoratorMetadata": true
2018-05-03 15:07:59 -04:00
},
"include": [
2021-01-28 15:18:32 -05:00
"./src"
2018-05-03 15:07:59 -04:00
]
}