mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-15 09:35:21 +01:00
19 lines
447 B
JSON
19 lines
447 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "esnext",
|
|
"jsx": "preserve",
|
|
"lib": ["dom", "es2015", "es2017"],
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"preserveConstEnums": true
|
|
},
|
|
"exclude": ["node_modules", "public", ".cache", "*.js"],
|
|
"include": ["./src/**/*"]
|
|
}
|