mirror of
https://github.com/luxfi/explore.git
synced 2026-07-27 05:54:15 +00:00
30 lines
646 B
JSON
30 lines
646 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"configs/*": ["../../../configs/*"],
|
|
"lib/*": ["../../../lib/*"],
|
|
"toolkit/*": ["../../../toolkit/*"],
|
|
"types/*": ["../../../types/*"]
|
|
},
|
|
"types": ["node"],
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"index.ts",
|
|
"worker.ts",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
} |