data-structure-typed/tsconfig.json

31 lines
533 B
JSON

{
"compilerOptions": {
"target": "ES6",
"module": "ES6",
"outDir": "./lib",
"declaration": true,
"lib": [
"ESNext"
],
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"skipLibCheck": true,
"downlevelIteration": true,
"removeComments": false,
"experimentalDecorators": true,
"typeRoots": [
"node_modules/@types"
]
},
"include": ["src/**/*.ts", "src/**/*.js"],
"exclude": [
"node_modules",
"lib",
"dist",
"umd"
]
}