23 lines
485 B
JSON
23 lines
485 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"target": "ES6",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ES6", "ESNext", "DOM"],
|
|
"outDir": "lib",
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"declarationDir": "@types",
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules/**"]
|
|
}
|