19 lines
467 B
JSON
19 lines
467 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"strict": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"exactOptionalPropertyTypes": true,
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"lib": ["ES2022", "WebWorker"],
|
||
|
|
"noEmit": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true
|
||
|
|
},
|
||
|
|
"include": ["src/sw.ts"]
|
||
|
|
}
|