2021-08-28 18:14:29 +00:00
|
|
|
{
|
2021-08-28 21:51:54 +00:00
|
|
|
"include": ["src/global.d.ts", "src/**/*.ts", "__tests__/**/*.ts"],
|
|
|
|
"exclude": ["dist", "node_modules", "demo"],
|
2021-08-28 18:14:29 +00:00
|
|
|
"compilerOptions": {
|
2021-08-28 21:51:54 +00:00
|
|
|
"baseUrl": ".",
|
2021-08-28 18:14:29 +00:00
|
|
|
"rootDir": ".",
|
|
|
|
"outDir": "dist",
|
|
|
|
"sourceMap": false,
|
|
|
|
"noEmit": true,
|
2021-08-28 21:51:54 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2021-08-28 18:14:29 +00:00
|
|
|
|
2021-08-28 21:51:54 +00:00
|
|
|
"target": "es5",
|
2021-08-28 18:14:29 +00:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
|
|
|
"noUnusedLocals": true,
|
2021-08-28 21:51:54 +00:00
|
|
|
"strictNullChecks": false,
|
2021-08-28 18:14:29 +00:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"strict": true,
|
|
|
|
"isolatedModules": false,
|
|
|
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"removeComments": false,
|
2021-08-28 21:51:54 +00:00
|
|
|
"jsx": "preserve",
|
|
|
|
"lib": ["es5", "dom"],
|
|
|
|
"types": ["node", "jest", "howler"]
|
2021-08-28 18:14:29 +00:00
|
|
|
}
|
2021-08-28 21:51:54 +00:00
|
|
|
}
|