mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-27 09:28:12 +03:00
21 lines
371 B
JSON
21 lines
371 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"target": "ES2020",
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"outDir": "js/",
|
|
"esModuleInterop": true, // lets us use module.exports stuff as if they were ES6 modules.
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts"
|
|
]
|
|
} |