webstorage-decorators/tsconfig.json
2021-01-28 10:24:11 -05:00

19 lines
318 B
JSON

{
"compilerOptions": {
"target": "ES2015",
"module": "commonjs",
"declaration": true,
"outDir": "lib",
"typeRoots": [
"./node_modules/@types"
],
"strict": true,
"noImplicitAny": false,
"experimentalDecorators": true,
},
"include": [
"index.ts",
"src/**/*"
]
}