{ "include": ["src", "types"], "compilerOptions": { "module": "esnext", "target": "esnext", "moduleResolution": "node", "jsx": "preserve", "baseUrl": "./", /* paths - import rewriting/resolving */ "paths": { // If you configured any Snowpack aliases, add them here. // Add this line to get types for streaming imports (packageOptions.source="remote"): // "*": [".snowpack/types/*"] // More info: https://www.snowpack.dev/guides/streaming-imports "@app/*": ["./src/*"], "@pages/*": ["./src/pages/*"], "@components/*": ["./src/components/*"], "@core/*": ["./src/core/*"], "@static/*": ["./src/static/*"] }, /* noEmit - Snowpack builds (emits) files, not tsc. */ "noEmit": true, /* Additional Options */ "importHelpers": true, "removeComments": true, "strict": true, "strictNullChecks": true, "skipLibCheck": true, "types": ["snowpack-env"], "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, "allowSyntheticDefaultImports": true, "importsNotUsedAsValues": "error" } }