forked from peas-dev/peas
26 lines
541 B
JSON
26 lines
541 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"verbatimModuleSyntax": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": "./",
|
|
"types": [
|
|
"node"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
],
|
|
"removeComments": true,
|
|
},
|
|
"include": [
|
|
"scripts/**/*"
|
|
],
|
|
}
|