mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 08:35:57 +00:00
17 lines
412 B
JSON
17 lines
412 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2022", "DOM"],
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowImportingTsExtensions": true
|
|
},
|
|
"include": ["index.ts", "src/**/*.ts", "src/**/*.d.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|