cubetiq-ts-utils/tsconfig.json
Sambo Chea b1b37b069f
All checks were successful
continuous-integration/drone/push Build is passing
Fixed the ts library and add rollup config for build
Fixed log tests and updated config
2021-03-11 11:32:42 +07:00

23 lines
630 B
JSON

{
"compilerOptions": {
"target": "es5",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "es2015",
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmit": true,
"declaration": true,
"outDir": "dist/lib",
"rootDir": "src",
"lib": ["es2015", "es2016", "es2017", "dom"]
},
"include": ["src"],
"exclude": ["node_modules"]
}