23 lines
454 B
JSON
23 lines
454 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"outDir": "dist",
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "Bundler",
|
|
"verbatimModuleSyntax": true,
|
|
|
|
/* Linting */
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"baseUrl": "./src"
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|