17 lines
333 B
JSON
17 lines
333 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": ".",
|
||
|
"target": "ESNext",
|
||
|
"lib": ["esnext"],
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "Bundler",
|
||
|
"strict": true,
|
||
|
"declaration": true,
|
||
|
"noEmit": true,
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true
|
||
|
},
|
||
|
"include": ["./src/**/*.ts"],
|
||
|
"exclude": ["./dist"]
|
||
|
}
|