pashto-grammar/tsconfig.json

36 lines
763 B
JSON
Raw Normal View History

2021-03-18 14:07:29 +00:00
{
"compilerOptions": {
2023-02-04 12:20:48 +00:00
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
2021-03-18 14:07:29 +00:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
2023-02-04 12:20:48 +00:00
"module": "ESNext",
"moduleResolution": "Node",
2021-03-18 14:07:29 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2021-10-11 00:39:59 +00:00
"jsx": "react-jsx",
2023-02-04 12:20:48 +00:00
"types": [
"vite-plugin-pwa/client"
]
2021-03-18 14:07:29 +00:00
},
2023-02-04 12:20:48 +00:00
"mdx": {
"plugins": [
"remark-frontmatter",
"remark-mdx-frontmatter",
"remark-gfm"
]
2022-04-26 08:08:32 +00:00
},
2023-02-04 12:20:48 +00:00
"include": ["src", "vite-env.d.ts"],
2024-05-14 00:28:31 +00:00
"references": [
{
"path": "./tsconfig.node.json"
}
]
2021-03-18 14:07:29 +00:00
}